lib/sha256: fix compile on some hosts
authorAndreas Bießmann <[email protected]>
Sun, 20 Apr 2014 08:34:15 +0000 (10:34 +0200)
committerTom Rini <[email protected]>
Mon, 12 May 2014 19:19:46 +0000 (15:19 -0400)
commit822ef00e989f1b99d8f0554d74fa0d97ce007f06
treefc5f093920d8a7b5f50f192d45cc9a398bbb5e8c
parent65bb6d8deebf608ac2bd6c3eb60ad81cf5d30f60
lib/sha256: fix compile on some hosts

Commit 2842c1c24269a05142802d25520e7cb9035e456c introduced lib/sha256 into
mkimage. Since then it will be compiled with HOSTCC which may produce errors
on some systems. Most BSD systems (like OS X for me) do not ship a
linux/string.h which will lead to take the U-Boot provided
include/linux/string.h in the end. This header howver is completely wrong
here. Just take the string.h if compiling with HOSTCC and linux/string.h when
not.

Signed-off-by: Andreas Bießmann <[email protected]>
Cc: Heiko Schocher <[email protected]>
Acked-by: Heiko Schocher<[email protected]>
lib/sha256.c